SourceCollection Property (IItemsSource<T>)
In This Topic
Gets or sets the source collection.
Syntax
'Declaration
Property SourceCollection As System.Collections.Generic.IEnumerable(Of T)
'Usage
Dim instance As IItemsSource(Of T)
Dim value As System.Collections.Generic.IEnumerable(Of T)
instance.SourceCollection = value
value = instance.SourceCollection
System.Collections.Generic.IEnumerable<T> SourceCollection {get; set;}
read-write property SourceCollection: System.Collections.Generic.IEnumerable;
function get,set SourceCollection : System.Collections.Generic.IEnumerable
__property System.Collections.Generic.IEnumerable<T*>* get_SourceCollection();
__property void set_SourceCollection(
System.Collections.Generic.IEnumerable<T*>* value
);
property System.Collections.Generic.IEnumerable<T^>^ SourceCollection {
System.Collections.Generic.IEnumerable<T^>^ get();
void set ( System.Collections.Generic.IEnumerable<T^>^ value);
}
See Also